home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / etc / httpd / conf / access.conf next >
Encoding:
Text File  |  1994-03-09  |  968 b   |  37 lines

  1. # access.conf: Global access configuration
  2. # Online docs at http://hoohoo.ncsa.uiuc.edu/
  3. # I suggest you consult them; this is important and confusing stuff.
  4.  
  5. # /usr/local/etc/httpd/ should be changed to whatever you set ServerRoot to.
  6. <Directory /usr/local/etc/httpd/cgi-bin>
  7. Options Indexes FollowSymLinks
  8. </Directory>
  9.  
  10. # This should be changed to whatever you set DocumentRoot to.
  11.  
  12. <Directory /usr/local/etc/httpd/htdocs>
  13.  
  14. # This may also be "None", "All", or any combination of "Indexes",
  15. # "Includes", or "FollowSymLinks"
  16.  
  17. Options Indexes FollowSymLinks
  18.  
  19. # This controls which options the .htaccess files in directories can
  20. # override. Can also be "None", or any combination of "Options", "FileInfo", 
  21. # "AuthConfig", and "Limit"
  22.  
  23. AllowOverride All
  24.  
  25. # Controls who can get stuff from this server.
  26.  
  27. <Limit GET>
  28. order allow,deny
  29. allow from all
  30. </Limit>
  31.  
  32. </Directory>
  33.  
  34. # You may place any other directories you wish to have access
  35. # information for after this one.
  36.  
  37.